home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / animutil / mke_anim / makeanim.doc next >
Encoding:
Text File  |  1991-12-19  |  1.7 KB  |  47 lines

  1.  
  2.                           ***  MakeANIM.DOC  ***
  3.  
  4.     Here's V1.0 of an ANIM standard compressor, which can take a series of
  5. IFF files and combine them into a single animation file that can be played
  6. back with ShowANIM, as well as the Director and Aegis VideoSeg.  To create a
  7. compressed ANIM file, construct a text-file with a list of file names of
  8. frames to be assembled, one per line:
  9.  
  10.      pictures/frame01
  11.      pictures/frame02
  12.      pictures/frame03
  13.      pictures/frame04
  14.      pictures/frame05
  15.      pictures/frame01
  16.      pictures/frame02
  17.  
  18. Files can reside on different disks - just enter the entire path name
  19. (including disk name).  A requester will pop up when it's time to put in the
  20. appropriate disk.
  21.  
  22. If you want to create an endless loop, make sure the first two frames are
  23. repeated at the end of the file as in the example above.
  24.  
  25. Once the list file is created (let's call it FLIST) you then issue the
  26. command:
  27.  
  28.      MakeANIM FLIST test.anim
  29.  
  30. This will read the frames in one by one and create the ANIM file with the
  31. name "test.anim".  This file can then be played back with the abovementioned
  32. player programs.
  33.  
  34. The program should work in any resolution including HAM, but don't try to
  35. mix resolutions.  The color palettes should all be the same, as this version
  36. does not handle palette changing on the fly.
  37.  
  38. This program has been successfully used to construct standard format ANIM
  39. files from Animate-3D frames, as well as individual files created by paint
  40. programs.
  41.  
  42. How much memory do you need?  Good question.  The program will create 4
  43. buffers the size of the IFF image during compression.  Only one buffer is
  44. required to be in CHIP memory.  Lo-res shouldn't be any trouble for anybody,
  45. but I don't know exactly where the dividing lines are otherwise.
  46.  
  47.